web3.js web3.utils.hexToUtf8
web3.utils.hexToUtf8(hex)
web3.utils.hexToString(hex) // ALIAS
web3.utils.toUtf8(hex) // ALIAS, deprecated
渡された16進数の値に対応する UTF-8 文字列を返します。
パラメータ
1. hex - String
戻り値
String
サンプル
code:example.js
web3.utils.hexToUtf8('0x49206861766520313030e282ac');
"I have 100€"
参考